<Code Lib>
2026 Method
Changes 0
M

HermiteSurface.Create(Int32, Int32, IList<XYZ>)

Description:
Create a non-periodic Hermite surface using a net of 3D points as input.
Remarks:
Points form a net of nU * nV 3D points. Suitable defaults will be used for other surface parameters. See other Create() functions if greater control over input is desired.
Overloads (2):
Create(Int32,Int32,IList[XYZ])

public static HermiteSurface Create(
	int nU,
	int nV,
	IList<XYZ> points
)

  • Int32
    nU
    Number of points in U direction.
  • Int32
    nV
    Number of points in V direction.
  • IList<XYZ>
    points
    Array of points. Must contain nU*nV points.
Return Value HermiteSurface A Hermite surface object created from input data.

Loading…